From: Richard M. Stallman Date: Wed, 11 Oct 1995 17:14:08 +0000 (+0000) Subject: (make-syntax-table): Use nil for "inherit". X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~85883 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a6889c57ba6a25e6616cd65305295e97e8581047;p=emacs.git (make-syntax-table): Use nil for "inherit". --- diff --git a/lisp/subr.el b/lisp/subr.el index fdf189c6851..38c8376e8e5 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -782,19 +782,19 @@ syntax table; other characters are copied from the standard syntax table." i) (setq i 0) (while (<= i 31) - (aset table i 13) + (aset table i nil) (setq i (1+ i))) (setq i ?A) (while (<= i ?Z) - (aset table i 13) + (aset table i nil) (setq i (1+ i))) (setq i ?a) (while (<= i ?z) - (aset table i 13) + (aset table i nil) (setq i (1+ i))) (setq i 128) (while (<= i 255) - (aset table i 13) + (aset table i nil) (setq i (1+ i))) table)))